home *** CD-ROM | disk | FTP | other *** search
/ 220 Jogos / 220 jogos.iso / classicos / resta11 / SEndScene.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-12-24  |  803 b   |  40 lines

  1. // SEndScene.h: Schnittstelle fⁿr die Klasse SEndScene.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_SENDSCENE_H__477249C9_3DB2_43BF_A625_B7F90BBC5F05__INCLUDED_)
  6. #define AFX_SENDSCENE_H__477249C9_3DB2_43BF_A625_B7F90BBC5F05__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. #include "SOutlineFont.h"
  13.  
  14. enum SEndState
  15. {
  16.     TEXT_DONE,
  17.     TEXT_MC,
  18.     DONE
  19. };
  20.  
  21. class SEndScene  
  22. {
  23. public:
  24.     bool isDone();
  25.     void update(float frametime);
  26.     void create(HDC hDC,int howmany);
  27.     SEndScene();
  28.     virtual ~SEndScene();
  29. protected:
  30.     SEndState state;
  31.     SOutlineFont font;
  32.     float position;
  33.     float size[2];
  34.     int number;
  35.     bool done;
  36.  
  37. };
  38.  
  39. #endif // !defined(AFX_SENDSCENE_H__477249C9_3DB2_43BF_A625_B7F90BBC5F05__INCLUDED_)
  40.